.header-light {
  background-color: #FFFFFF;
}

.header-dark {
  background-color: #002E5F;
  color: #FFFFFF;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

.header-title {
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.header-light .header-title {
  color: #002E5F;
  font-size: 36px;
}

.header-dark .header-title {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: medium;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #002E5F;
  text-decoration: none;
}

.header-dark .nav-link {
  font-weight: medium;
  font-size: 20px;
  color: #FFFFFF;
}

.nav-link:hover {
  text-decoration: underline;
}

a {
  color: #008BCB;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
}

a:hover {
  text-decoration: underline;
  color: #CB2686;
}